hardware circular buffer - определение. Что такое hardware circular buffer
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое hardware circular buffer - определение

DATA STRUCTURE
Ring Buffer; Ring buffer; Circular queue; Ringbuffer; Ring (data structure); Cyclic buffer; Circular log
  • A 24-byte keyboard circular buffer. When the write pointer is about to reach the read pointer—because the microprocessor is not responding—the buffer stops recording keystrokes. On some computers a beep would be played.
Найдено результатов: 951
hardware circular buffer      
<programming, hardware> digital signal processors which support hardware circular buffers automatically generate and increment pointers for memory accesses which wrap to the beginning of the buffer when its end is reached, thus saving the time and instructions otherwise needed to ensure that the address pointer stays within the boundary of the buffer, and speeding the execution of repetitive DSP algorithms. {Digital Signal Processor For Digital Audio Applications (http://analog.com/publications/documentation/21065L_Audio_Tutorial.PDF)}. (2000-06-17)
circular buffer         
<programming> An area of memory used to store a continuous stream of data by starting again at the beginning of the buffer after reaching the end. A circular buffer is usually written by one process and read by another. Separate read and write pointers are maintained. These are not allowed to pass each other otherwise either unread data would be overwritten or invalid data would be read. A circuit may implement a hardware circular buffer. (2000-06-17)
buffer state         
COUNTRY LOCATED BETWEEN TWO OTHER MUTUALLY HOSTILE COUNTRIES
Buffer State; Buffer states; Buffer republic; Buffer colony
(buffer states)
A buffer state is a peaceful country situated between two or more larger hostile countries.
Turkey and Greece were buffer states against the former Soviet Union.
N-COUNT
hardware         
WIKIMEDIA DISAMBIGUATION PAGE
Hardware system; Hardware System; Hardware (disambiguation); H/W; HARDWARE; Hardwares
1.
In computer systems, hardware refers to the machines themselves as opposed to the programs which tell the machines what to do. Compare software
.
N-UNCOUNT
2.
Military hardware is the machinery and equipment that is used by the armed forces, such as tanks, aircraft, and missiles.
N-UNCOUNT: usu adj N
3.
Hardware refers to tools and equipment that are used in the home and garden, for example saucepans, screwdrivers, and lawnmowers.
N-UNCOUNT
hardware         
WIKIMEDIA DISAMBIGUATION PAGE
Hardware system; Hardware System; Hardware (disambiguation); H/W; HARDWARE; Hardwares
<hardware> The physical, touchable, material parts of a computer or other system. The term is used to distinguish these fixed parts of a system from the more changable software or data components which it executes, stores, or carries. Computer hardware typically consists chiefly of electronic devices (CPU, memory, display) with some electromechanical parts (keyboard, printer, disk drives, tape drives, loudspeakers) for input, output, and storage, though completely non-electronic (mechanical, electromechanical, hydraulic, biological) computers have also been conceived of and built. See also firmware, wetware. (1997-01-23)
Hardware         
WIKIMEDIA DISAMBIGUATION PAGE
Hardware system; Hardware System; Hardware (disambiguation); H/W; HARDWARE; Hardwares
·noun Ware made of metal, as cutlery, kitchen utensils, and the like; ironmongery.
hardware         
WIKIMEDIA DISAMBIGUATION PAGE
Hardware system; Hardware System; Hardware (disambiguation); H/W; HARDWARE; Hardwares
¦ noun
1. heavy military equipment such as tanks and missiles.
2. the machines, wiring, and other physical components of a computer. Compare with software.
3. tools, implements, and other items used in the home and in activities such as gardening.
buffer state         
COUNTRY LOCATED BETWEEN TWO OTHER MUTUALLY HOSTILE COUNTRIES
Buffer State; Buffer states; Buffer republic; Buffer colony
¦ noun a small neutral country situated between two larger hostile countries.
Data buffer         
REGION OF A PHYSICAL MEMORY STORAGE USED TO TEMPORARILY STORE DATA WHILE IT IS BEING MOVED FROM ONE PLACE TO ANOTHER
Buffer (telecommunication); Packet buffering; Buffer (programming); Buffer (computer science); Memory buffer; Input buffer
In computer science, a data buffer (or just buffer) is a region of a memory used to temporarily store data while it is being moved from one place to another. Typically, the data is stored in a buffer as it is retrieved from an input device (such as a microphone) or just before it is sent to an output device (such as speakers).
Buffer state         
COUNTRY LOCATED BETWEEN TWO OTHER MUTUALLY HOSTILE COUNTRIES
Buffer State; Buffer states; Buffer republic; Buffer colony
A buffer state is a country lying between two rival or potentially hostile great powers. Its existence can sometimes be thought to prevent conflict between them.

Википедия

Circular buffer

In computer science, a circular buffer, circular queue, cyclic buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end. This structure lends itself easily to buffering data streams. There were early circular buffer implementations in hardware.